home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
F1 Licenseware
/
F1 Licenseware - Volume 1.iso
/
disks
/
003.dms
/
003.adf
/
EXAMPLE_PROGRAMS
/
example11.AMOS
/
example11.amosSourceCode
< prev
next >
Wrap
AMOS Source Code
|
1993-02-25
|
848b
|
61 lines
Rem example11.Amos
'
'
'** To break out of this program hold down CTRL and press C
'
'
Rem A little slideshow to demonstrate UNPACK
'
'
Rem Hide mouse pointer, Set tracker mod to loop continously,play the music.
Hide : Track Loop On : Track Play 5
'
'
Rem set a label (or marker) called BEGIN so GOTO knows where to jump to
BEGIN:
'
'
Rem UNPACK the picture stored in bank 12 to screen 0
Unpack 12 To 0
'
'
Rem wait 8 seconds
Wait 400
'
'
Rem fade out the screen to black
Fade 5
'
'
Rem wait fade*15
Wait 25
'
'
Rem unpack bank 11 to screen 0
Unpack 11 To 0
'
'
Wait 400
'
'
Fade 1
'
'
Wait 15
'
'
Rem unpack bank 10 to screen 0
Unpack 10 To 0
'
'
Wait 400
'
'
Fade 10
'
'
Wait 150
'
Rem there are no more pictures so GOTO the label marked BEGIN
Rem which will restart the display again, this program will go onfor ever.
Goto BEGIN